From c930f3a74812b00d821be8f250b836e398c7315a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Javier=20Jard=C3=B3n?= Date: Mon, 17 Aug 2009 17:55:09 +0200 Subject: [PATCH] Support silent build rules with automake 1.11 (GnomeBug:591998) Support silent build rules, requires at least automake-1.11. Enable by either passing --enable-silent-rules to configure or passing V=0 to make. --- configure.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure.in b/configure.in index 6f37437334..5f92bdcb68 100644 --- a/configure.in +++ b/configure.in @@ -49,6 +49,11 @@ cflags_set=${CFLAGS+set} AM_INIT_AUTOMAKE(no-define) AM_CONFIG_HEADER(config.h) +# Support silent build rules, requires at least automake-1.11. Enable +# by either passing --enable-silent-rules to configure or passing V=0 +# to make +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([no])]) + # # For each of the libraries we build, we define the following -- 2.30.2